home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / UNIXTOOL / MEMACS / H / Epath < prev    next >
Text File  |  1990-06-26  |  1KB  |  101 lines

  1. /*    EPATH:    This file contains certain info needed to locate the
  2.         MicroEMACS files on a system dependant basis.
  3.  
  4.                                     */
  5.  
  6. /*    possible names and paths of help files under different OSs    */
  7.  
  8. NOSHARE CONST char *pathname[] =
  9.  
  10. #if    AMIGA
  11. {
  12.     "",
  13.     "sys:c/",
  14.     "sys:t/",
  15.     "sys:s/",
  16.     "c:/",
  17.     ":t/",
  18.     ":s/"
  19. };
  20. #endif
  21.  
  22. #if    ST520
  23. {
  24.     "\\",
  25.     "\\bin\\",
  26.     "\\util\\",
  27.     ""
  28. };
  29. #endif
  30.  
  31. #if    FINDER
  32. {
  33.     "/bin",
  34.     "/sys/public",
  35.     ""
  36. };
  37. #endif
  38.  
  39. #if    MSDOS | OS2
  40. {
  41.     "\\sys\\public\\",
  42.     "\\usr\\bin\\",
  43.     "\\bin\\",
  44.     "\\",
  45.     ""
  46. };
  47. #endif
  48.  
  49. #if    V7 | BSD | USG | SMOS | HPUX | XENIX | SUN | AVIION
  50. {
  51.     "/usr/local/",
  52.     "/usr/lib/",
  53.     ""
  54. };
  55. #endif
  56.  
  57. #if    VMS
  58. {
  59.     "MICROEMACS$LIB:",
  60.     "SYS$LOGIN:",
  61.     "",
  62.     "sys$sysdevice:[vmstools]"
  63. };
  64. #endif
  65.  
  66. #if WMCS
  67. {
  68.     "",
  69.     "sys$disk/syslib.users/"
  70. };
  71. #endif
  72.  
  73. #if AOSVS
  74. /*
  75.     NOTE: you must use the Unix style pathnames here!
  76. */
  77. {
  78.     "",
  79.     "/macros/",
  80.     "/help/"
  81. };
  82. #endif
  83.  
  84. #if MPE
  85. {
  86.     ".pub",
  87.     ".pub.sys",
  88.     ""
  89. };
  90. #endif /* MPE */
  91.  
  92. #if RISCOS    /* PROVISIONAL */
  93. {
  94.     "",                    /* File search paths...    */
  95.     "Emacs:",
  96.     "Lib:Emacs."
  97. };
  98. #endif
  99.  
  100. #define    NPNAMES    (sizeof(pathname)/sizeof(char *))
  101.